home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_400 / 423_01 / mimeqp / readme < prev   
Encoding:
Text File  |  1994-02-01  |  973 b   |  24 lines

  1. This MIMEQP decoder/encoder is freeware by Karl Hahn hahn@lds.loral.com
  2. Distribute freely, but please remove my name and address from modified
  3. versions.  Source code is included.
  4.  
  5. MIMEQP encodes files that are mostly ASCII but contain some nonASCII
  6. characters so that the encoded file is all ASCII.  The characters that
  7. were ASCII remain so, so that the encoded file is human-readable.
  8. MIMQP encoding also limits line lengths to 72 characters.  It is
  9. useful for sending files that may contain nonASCII through mail servers.
  10. MIMEQP (or MIME Quoted-Printable) is defined in RFC 1341.
  11.  
  12.  
  13. Encoding replaces all control characters except \n and \t,
  14. all ='s, and all characters whose ASCII code is greater than 127
  15. with =XX where XX is the hex value of the ASCII.
  16.  
  17. Decoding (which is the default) does the opposite.
  18.  
  19. Program Usage:
  20.  
  21. mimeqp infile [outfile] [-option]
  22. -e            encode  (default is decode)
  23. if no output file given, output replaces input
  24.